home *** CD-ROM | disk | FTP | other *** search
/ CD Charme 1 / CD Charme 01.iso / mac / hybride / GLOWING / HOLO / CHOOSE.DIR / 00010_Script_10 < prev    next >
Text File  |  1994-12-08  |  2KB  |  54 lines

  1. on yesReply
  2.   global clipCount, returnQT
  3.   set the puppet of sprite 20 to TRUE
  4.   
  5.   if (clipcount = 1) or (clipcount = 2) then
  6.     -- no special "yes" replies for these...
  7.     unsetQT 20
  8.     go to "ChooseMovie"
  9.   else if clipcount = 3 then
  10.     -- jacket off
  11.     set the castNum of sprite 20 to the number of cast "Q4YES.MOV"
  12.     set the movieRate of sprite 20 to 0
  13.     --updateStage
  14.     set returnQT = "Q4YES.MOV"
  15.     go to "Yes"
  16.   else if clipcount = 4 then
  17.     -- DO YOU MIND if I take my shoes off?
  18.     set the castNum of sprite 20 to the number of cast "Q5NO.MOV"
  19.     set the movieRate of sprite 20 to 0
  20.     --updateStage
  21.     set returnQT = "Q5NO.MOV"
  22.     go to "Yes"
  23.   else if clipcount = 5 then
  24.     -- OK if I take my skirt off?
  25.     set the castNum of sprite 20 to the number of cast "Q6YES.MOV"
  26.     set the movieRate of sprite 20 to 0
  27.     --updateStage
  28.     set returnQT = "Q6YES.MOV"
  29.     go to "Yes"
  30.   else if clipcount = 6 then
  31.     -- blouse off 
  32.     set the castNum of sprite 20 to the number of cast "Q7YES.MOV"
  33.     set the movieRate of sprite 20 to 0
  34.     --updateStage
  35.     set returnQT = "Q7YES.MOV"
  36.     go to "Yes"
  37.   else if clipcount = 7 then
  38.     -- stockings off 
  39.     set the castNum of sprite 20 to the number of cast "Q8YES.MOV"
  40.     set the movieRate of sprite 20 to 0
  41.     --updateStage
  42.     set returnQT = "Q8YES.MOV"
  43.     go to "Yes"
  44.   else if clipcount = 8 then
  45.     -- tease 
  46.     set the castNum of sprite 20 to the number of cast "Q9SORRY.MOV"
  47.     set the movieRate of sprite 20 to 0
  48.     --updateStage
  49.     set returnQT = "Q9SORRY.MOV"
  50.     go to "Yes"
  51.   else
  52.     go to "ChooseMovie"
  53.   end if
  54. end yesReply